www.gusucode.com > 溷沌分析工具箱 - OpenTSTOOL1.11 > 混沌分析工具箱 - OpenTSTOOL1.11\tstoolbox\@achse\horzcat.m

    function r = horzcat(a,b)

if (a == b)
 	switch a.resolution
    	case 'linear'
    		r = a;
		case 'logarithmic'
			r = a;
		case 'arbitrary'
			r = a;
			r.values = [a.values b.values];
	end
else
	error('attributes of axes are to different to concatenate')
end